spb/worthdoing Public
Autonomous investigation agent that discovers, challenges, and ranks things genuinely worth doing — Claude + Firecrawl, Next.js 16, PostgreSQL
TypeScript 91.5%
SQL 5.8%
CSS 2.2%
1/**2 * WorthDoing.ai3 * Author: Simon-Pierre Boucher4 * Contact: contact@spboucher.ai5 * File: src/app/investigate/[id]/page.tsx6 * Description: Live investigation page — server shell that mounts the streaming client view.7 */8import { InvestigationLive } from "./InvestigationLive";910export default async function InvestigatePage({ params }: PageProps<"/investigate/[id]">) {11 const { id } = await params;12 return <InvestigationLive id={id} />;13}14